﻿.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 28px;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
    padding-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #444;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
        transition: border-color 0.3s;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0056b3;
            outline: none;
        }

    .form-group textarea {
        height: 150px;
        resize: vertical;
    }

.submit-btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

    .submit-btn:hover {
        background-color: #004494;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        padding: 20px;
    }
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

    .form-header h2 {
        color: #333;
        font-weight: 700;
    }

.form-group {
    margin-bottom: 20px;
}

.control-label {
    font-weight: 600;
    color: #555;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px;
    transition: border-color 0.3s;
}

    .form-control:focus {
        border-color: #4e73df;
        box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
    }

.btn-primary {
    background-color: #4e73df;
    border-color: #4e73df;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background-color: #2e59d9;
        border-color: #2653d4;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

/* Notification Popup Styles */
.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

    .notification-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.notification-popup {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: scale(0.7);
    transition: transform 0.3s;
}

.notification-overlay.show .notification-popup {
    transform: scale(1);
}

.notification-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.notification-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.notification-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.close-notification {
    background-color: #4e73df;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

    .close-notification:hover {
        background-color: #2e59d9;
    }

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.required-field {
    color: #e74a3b;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.additional-info {
    margin-top: 30px;
}

.info-item {
    margin-bottom: 10px;
}.gallery-section {
    padding: 60px 20px;
}

.gallery-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .gallery-item img {
        width: 100%;
        height: 280px;
        object-fit: contain;
        transition: 0.4s ease;
        display: block;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }.section-title {
    color: #003366;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 2px solid #ff6600;
    display: inline-block;
    padding-bottom: 5px;
}

.spec-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

    .spec-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #ff6600;
        font-weight: bold;
    }

.btn-enquiry {
    background-color: #ff6600;
    color: white;
    padding: 12px 30px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    width: 100%;
    margin-top: 20px;
    transition: 0.3s;
}

    .btn-enquiry:hover {
        background-color: #e65c00;
        color: white;
    }/* =========================================
   UNIQUE VISION & MISSION STYLES
   ========================================= */

.vm-unique-section {
    /* Deep Indigo/Purple Gradient Background */
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    color: #ffffff;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

    /* Subtle Grid Background Pattern */
    .vm-unique-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 50px 50px;
        pointer-events: none;
    }

.vm-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header */
.vm-header {
    text-align: center;
    margin-bottom: 60px;
}

.vm-subtitle {
    color: var(--accent-blue);
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.vm-main-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

/* Glassmorphism Card Base */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.1s ease-out; /* For JS Tilt */
    transform-style: preserve-3d;
}

/* Vision Hero Card */
.vision-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    position: relative;
}

    .vision-card::after {
        content: '';
        position: absolute;
        inset: -1px;
        border-radius: 20px;
        padding: 2px;
        background: linear-gradient(45deg, var(--accent-blue), transparent, var(--accent-orange));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

.card-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(14, 165, 233, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.vision-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

/* Mission Wrapper */
.mission-wrapper {
    max-width: 800px;
    margin: 0 auto 80px auto;
    position: relative;
}

.mission-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.5);
}

.mission-text {
    padding: 30px;
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0;
}

/* Lists Grid */
.lists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.list-column {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.list-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

    .list-title i {
        color: var(--accent-orange);
        margin-right: 10px;
    }

.list-intro {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 25px;
    font-style: italic;
}

/* Tech List Items (Horizontal Bars) */
.tech-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tech-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    border-radius: 12px;
    transition: 0.3s;
    border-left: 3px solid transparent;
}

    .tech-item:hover {
        background: rgba(255, 255, 255, 0.08);
        border-left-color: var(--accent-blue);
        transform: translateX(10px);
    }

    .tech-item i {
        color: var(--accent-blue);
        margin-right: 15px;
        font-size: 1.2rem;
    }

    .tech-item span {
        font-size: 0.95rem;
        color: #cbd5e1;
    }

/* Responsive */
@media (max-width: 992px) {
    .lists-grid {
        grid-template-columns: 1fr;
    }

    .vm-main-title {
        font-size: 2.2rem;
    }
}
/* =========================================
   QUALITY POLICY SECTION STYLES
   ========================================= */

.quality-section {
    background-color: #f8fafc;
    background-image: linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
    background-size: 40px 40px; /* Engineering Grid Pattern */
    padding: 100px 20px;
    color: var(--primary-dark);
    position: relative;
}

/* Header */
.policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.policy-seal {
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

    .policy-seal i {
        font-size: 2rem;
        color: var(--accent-blue);
    }

.policy-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--accent-orange);
    margin: 0 auto;
}

/* Content Wrapper */
.policy-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Main Policy Text Box */
.policy-text-box {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border-left: 6px solid var(--accent-blue);
    margin-bottom: 40px;
    position: relative;
}

    /* Decorative Quote Mark */
    .policy-text-box::before {
        content: '\f10d';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 3rem;
        color: rgba(14, 165, 233, 0.05);
    }

    .policy-text-box p {
        font-size: 1.15rem;
        line-height: 1.8;
        text-align: justify;
        color: #334155;
    }

/* Highlights (Keywords) */
.highlight-key {
    font-weight: 800;
    color: var(--accent-blue);
    background: rgba(14, 165, 233, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    transition: 0.3s;
}

    .highlight-key:hover {
        background: var(--accent-blue);
        color: white;
        cursor: default;
    }

/* Strategic Goal Box */
.strategic-goal {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #0f172a, #1e293b);
    padding: 30px;
    border-radius: 12px;
    color: white;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
    position: relative;
    overflow: hidden;
}

    /* Decorative Circle behind goal */
    .strategic-goal::after {
        content: '';
        position: absolute;
        right: -50px;
        bottom: -50px;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
    }

.goal-icon {
    min-width: 70px;
    height: 70px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    font-size: 1.5rem;
    color: white;
    z-index: 2;
}

.goal-text h4 {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.goal-text p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    color: #cbd5e1;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-text-box {
        padding: 30px 20px;
    }

    .strategic-goal {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .goal-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .policy-header h2 {
        font-size: 2rem;
    }
}
/* =========================================
   PATENT CERTIFICATES GALLERY STYLES
   ========================================= */

.patents-section {
    padding: 100px 20px;
    background-color: #0f172a; /* Deep Navy */
    position: relative;
}

/* Header Badge */
.cert-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1); /* Gold tint */
    color: #d4af37; /* Gold */
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

    .cert-badge i {
        margin-right: 8px;
    }

/* Gallery Grid */
.patents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Individual Certificate Card */
.patent-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

    .patent-item:hover {
        transform: translateY(-10px);
    }

.patent-link {
    display: block;
    text-decoration: none;
}
/* =========================================
   CLIENTS SECTION STYLES
   ========================================= */

.clients-section {
    padding: 100px 20px;
    background-color: #ffffff;
    /* Subtle pattern background */
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Responsive Grid Layout */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); /* Adapts to screen size */
    gap: 30px;
    margin-top: 50px;
}

/* Individual Client Card */
.client-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px; /* Fixed height for uniformity */
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

    /* Hover Effect */
    .client-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-color: var(--accent-blue);
    }

    /* Image Styling */
    .client-card img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        /* Start in Grayscale */
        filter: grayscale(100%) opacity(0.7);
        transition: filter 0.4s ease, transform 0.4s ease;
    }

    /* Hover: Remove Grayscale and Scale Up */
    .client-card:hover img {
        filter: grayscale(0%) opacity(1);
        transform: scale(1.05);
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
        gap: 15px;
    }

    .client-card {
        height: 100px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}
/* =========================================
   PRODUCT SPOTLIGHT SECTION STYLES
   ========================================= */

.product-spotlight {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #0f172a, #1e293b); /* Deep Navy Gradient */
    color: white;
}

/* Badge */
.tech-badge {
    display: inline-block;
    background: var(--accent-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
/* =========================================
   PRODUCT SPOTLIGHT SECTION STYLES (REUSABLE)
   ========================================= */

.product-spotlight {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #0f172a, #1e293b); /* Deep Navy Gradient */
    color: white;
}

/* Badge */
.tech-badge {
    display: inline-block;
    background: var(--accent-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Hero Grid (Text + Images) */
.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.product-desc .intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: justify;
}

.cta-group {
    display: flex;
    gap: 20px;
}

/* Image Gallery (Right Side) - Specific for 3 items in a row */
.product-images-row {
    display: flex;
    gap: 15px;
}

    .product-images-row .img-box {
        flex: 1;
        border-radius: 12px;
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.1);
        transition: transform 0.3s;
    }

        .product-images-row .img-box:hover {
            transform: translateY(-10px);
            border-color: var(--accent-blue);
        }

    .product-images-row img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

/* 3-Column Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: 0.3s;
}

    .info-card:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: var(--accent-blue);
        transform: translateY(-5px);
    }

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .card-header i {
        font-size: 1.5rem;
        color: var(--accent-orange);
        margin-right: 15px;
    }

    .card-header h3 {
        font-size: 1.3rem;
        color: white;
        margin: 0;
    }

.tech-list {
    list-style: none;
    padding-left: 0;
}

    .tech-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 12px;
        color: var(--text-light);
        font-size: 0.95rem;
        line-height: 1.5;
    }

        .tech-list li::before {
            content: '\f054'; /* FontAwesome Chevron Right */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--accent-blue);
            font-size: 0.8rem;
        }

/* Responsive */
@media (max-width: 992px) {
    .product-hero-grid {
        grid-template-columns: 1fr;
    }

    .product-images-row {
        flex-wrap: wrap;
    }

        .product-images-row .img-box {
            flex: 1 1 150px;
        }
}
/* =========================================
   PRODUCT SPOTLIGHT SECTION STYLES (Reused & Enhanced)
   ========================================= */

.product-spotlight {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #0f172a, #1e293b); /* Deep Navy Gradient */
    color: white;
}

/* Badge */
.tech-badge {
    display: inline-block;
    background: var(--accent-orange); /* Orange for this section to differentiate */
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Hero Grid (Text + Large Image) */
.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Image gets 1.5x space */
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.product-desc .intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: justify;
}

.cta-group {
    display: flex;
    gap: 20px;
}

/* Large Image Styling */
.product-image-large {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

    .product-image-large img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .product-image-large:hover img {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    }

/* 3-Column Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Card Styling */
.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

    .info-card:hover {
        background: rgba(255, 255, 999, 0.05); /* Slight green tint on hover */
        border-color: var(--accent-blue);
        transform: translateY(-5px);
    }

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .card-header i {
        font-size: 1.5rem;
        color: var(--accent-blue);
        margin-right: 15px;
    }

    .card-header h3 {
        font-size: 1.3rem;
        color: white;
        margin: 0;
    }

/* List Styling */
.tech-list {
    list-style: none;
    padding-left: 0;
    flex-grow: 1; /* Fills available height */
}

    .tech-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 12px;
        color: var(--text-light);
        font-size: 0.95rem;
        line-height: 1.5;
    }

        .tech-list li::before {
            content: '\f054'; /* FontAwesome Chevron Right */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--accent-blue);
            font-size: 0.8rem;
        }

/* Responsive */
@media (max-width: 992px) {
    .product-hero-grid {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
        gap: 30px;
    }

    .product-image-large {
        max-width: 100%;
        margin: 0 auto;
        height: auto;
    }
}
/* Hero Grid (Text + Images) */
.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.product-desc .intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: justify;
}

.cta-group {
    display: flex;
    gap: 20px;
}

/* Image Gallery (Right Side) */
.product-images {
    display: flex;
    gap: 15px;
}

    .product-images .img-box {
        flex: 1;
        border-radius: 12px;
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.1);
        transition: transform 0.3s;
    }

        .product-images .img-box:hover {
            transform: translateY(-10px);
            border-color: var(--accent-orange);
        }

    .product-images img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
    }

/* =========================================
   HORIZONTAL GALLERY STRIP STYLES
   ========================================= */

.product-gallery-strip {
    display: flex;
    gap: 15px;
    overflow-x: auto; /* Allows scrolling on mobile */
    padding-bottom: 10px; /* Space for scrollbar */
    scroll-snap-type: x mandatory; /* Snaps to image on scroll */
}

.gallery-item {
    flex: 0 0 auto; /* Prevents shrinking */
    width: 280px; /* Fixed width for items */
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    scroll-snap-align: start;
    transition: transform 0.3s;
}

    .gallery-item:hover {
        border-color: var(--accent-blue);
        transform: scale(1.05);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Custom Scrollbar for Webkit */
.product-gallery-strip::-webkit-scrollbar {
    height: 6px;
}

.product-gallery-strip::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.product-gallery-strip::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 3px;
}

/* 3-Column Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: 0.3s;
}

    .info-card:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: var(--accent-blue);
        transform: translateY(-5px);
    }

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .card-header i {
        font-size: 1.5rem;
        color: var(--accent-orange);
        margin-right: 15px;
    }

    .card-header h3 {
        font-size: 1.3rem;
        color: white;
        margin: 0;
    }

.tech-list {
    list-style: none;
    padding-left: 0;
}

    .tech-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 12px;
        color: var(--text-light);
        font-size: 0.95rem;
        line-height: 1.5;
    }

        .tech-list li::before {
            content: '\f054'; /* FontAwesome Chevron Right */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--accent-blue);
            font-size: 0.8rem;
        }

/* Responsive */
@media (max-width: 992px) {
    .product-hero-grid {
        grid-template-columns: 1fr;
    }

    .product-images {
        flex-wrap: wrap;
    }

        .product-images .img-box {
            flex: 1 1 150px; /* Responsive image width */
        }
}
/* Image Wrapper for Zoom Effect */
.patent-img-wrapper {
    position: relative;
    width: 100%;
    height: 500px; /* Fixed height for consistency */
    overflow: hidden;
    background-color: white; /* White background for certs */
    display: flex;
    align-items: center;
    justify-content: center;
}

    .patent-img-wrapper img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain; /* Ensures the whole certificate is visible */
        transition: transform 0.6s ease;
    }

.patent-item:hover .patent-img-wrapper img {
    transform: scale(1.1); /* Zoom in on hover */
}

/* Hover Overlay */
.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85); /* Dark overlay */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.patent-item:hover .hover-overlay {
    opacity: 1;
}

.hover-overlay i {
    font-size: 2rem;
    color: #d4af37; /* Gold Icon */
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.hover-overlay span {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}

/* Staggered animation on hover */
.patent-item:hover .hover-overlay i,
.patent-item:hover .hover-overlay span {
    transform: translateY(0);
}.about-banner {
    background:#000;
    background-size: cover;
    background-position: center;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .about-banner .content {
        text-align: center;
        color: #fff;
        max-width: 800px;
        padding: 20px;
    }

    .about-banner h1 {
        font-size: 55px;
        margin-bottom: 15px;
        color: #F17B00;
        font-weight: 700;
    }

    .about-banner p {
        font-size: 22px;
        line-height: 1.6;
    }

@media(max-width:768px) {
    .about-banner {
        height: 350px;
    }

        .about-banner h1 {
            font-size: 36px;
        }

        .about-banner p {
            font-size: 18px;
        }
}/* =========================================
   CSS VARIABLES & RESET
   ========================================= */
:root {
    --primary-dark: #0f172a; /* Deep Navy */
    --primary-light: #f8fafc; /* Off White */
    --accent-blue: #0ea5e9; /* Electric Blue */
    --accent-orange: #f97316; /* Vibrant Orange */
    --text-dark: #334155;
    --text-light: #94a3b8;
    --white: #ffffff;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   UTILITIES & ANIMATIONS
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.bg-dark {
    background-color: var(--primary-dark);
    color: var(--white);
}

.text-center {
    text-align: center;
}

.text-accent {
    color: var(--accent-orange);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: var(--white);
}

    .btn-primary:hover {
        background-color: transparent;
        border-color: var(--accent-blue);
        color: var(--accent-blue);
    }

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

    .btn-outline:hover {
        background-color: var(--white);
        color: var(--primary-dark);
    }

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #FEFEFE;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
}

/* ── Navigation Layout ── */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    height: 64px;
}

.logo a img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    color: #000;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: color 0.15s;
    white-space: nowrap;
}

    .nav-link:hover {
        color: #f17b00;
    }

    .nav-link i.fa-chevron-down {
        font-size: 0.6rem;
        transition: transform 0.3s;
    }

.has-dropdown:hover > .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

/* ── First Level Dropdown ── */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #0F172A;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 100;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.nav-item:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    position: relative;
}

    .dropdown li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 9px 16px;
        color: #fff;
        text-decoration: none;
        font-size: 0.82rem;
        font-weight: 400;
        border-radius: 8px;
        transition: all 0.15s;
        gap: 8px;
    }

        .dropdown li a:hover {
            background: rgba(255,255,255,0.06);
            color: #fff;
        }

        .dropdown li a i.fa-chevron-right {
            font-size: 0.55rem;
            color: #555;
            transition: all 0.2s;
        }

    .dropdown li:hover > a i.fa-chevron-right {
        color: #ff6600;
        transform: translateX(2px);
    }

.dropdown .category-label {
    padding: 8px 16px 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    pointer-events: none;
}

/* ── Second Level Dropdown (right-fly) ── */
.dropdown .dropdown {
    top: -8px;
    left: 100%;
    margin-left: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
}

.dropdown li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ── Third Level Dropdown ── */
.dropdown .dropdown .dropdown {
    top: -8px;
    left: 100%;
    margin-left: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
}

.dropdown .dropdown li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ── Deep-nest chevron rotation ── */
.dropdown .has-dropdown > a i.fa-chevron-right {
    transform: rotate(0deg);
}

.dropdown .has-dropdown:hover > a i.fa-chevron-right {
    transform: rotate(90deg);
}

/* ── No-arrow items ── */
.dropdown li.no-arrow > a i.fa-chevron-right {
    display: none;
}
/* ════════════ PRODUCTS MEGA MENU FIX ════════════ */

/* Main Products dropdown — multi-column grid */
.nav-item.has-dropdown > .dropdown {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 24px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 20px 24px !important;
    width: 780px;
    max-width: 92vw;
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

    /* Category labels — full width, act as column dividers */
    .nav-item.has-dropdown > .dropdown > .category-label {
        grid-column: 1 / -1;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: #fff;
        padding: 10px 0 4px 0;
        margin-top: 4px;
        border-top: 1px solid rgba(255,255,255,0.06);
    }

        .nav-item.has-dropdown > .dropdown > .category-label:first-child {
            border-top: none;
            margin-top: 0;
            padding-top: 0;
        }

    /* Menu items inside products dropdown */
    .nav-item.has-dropdown > .dropdown > li {
        position: relative;
    }

        .nav-item.has-dropdown > .dropdown > li > a {
            display: block;
            padding: 6px 8px !important;
            font-size: 0.78rem !important;
            color: #cbd5e1;
            border-radius: 6px;
            transition: all 0.15s ease;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

            .nav-item.has-dropdown > .dropdown > li > a:hover {
                background: rgba(34, 211, 238, 0.1);
                color: #fff;
            }

            /* Hide the right chevron in compact view */
            .nav-item.has-dropdown > .dropdown > li > a .fa-chevron-right {
                display: none;
            }

        /* ── Sub-dropdowns (e.g. Wiring Harness sub-items) ── */
        .nav-item.has-dropdown > .dropdown > li.has-dropdown > .dropdown {
            display: none !important;
            position: absolute;
            left: 100%;
            top: -10px;
            width: 260px;
            background: #1e293b;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 10px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.4);
            padding: 12px !important;
            z-index: 100;
        }

        .nav-item.has-dropdown > .dropdown > li.has-dropdown:hover > .dropdown {
            display: block !important;
        }

        .nav-item.has-dropdown > .dropdown > li.has-dropdown > .dropdown li a {
            font-size: 0.75rem !important;
            padding: 5px 10px !important;
            color: #94a3b8;
            border-radius: 6px;
        }

            .nav-item.has-dropdown > .dropdown > li.has-dropdown > .dropdown li a:hover {
                background: rgba(34, 211, 238, 0.1);
                color: #fff;
            }

        /* Sub-dropdown parent indicator — small dot */
        .nav-item.has-dropdown > .dropdown > li.has-dropdown > a::after {
            content: "›";
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            color: #475569;
            font-size: 1rem;
        }

    /* Scrollbar styling */
    .nav-item.has-dropdown > .dropdown::-webkit-scrollbar {
        width: 4px;
    }

    .nav-item.has-dropdown > .dropdown::-webkit-scrollbar-track {
        background: transparent;
    }

    .nav-item.has-dropdown > .dropdown::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.15);
        border-radius: 4px;
    }

/* ════════════ OTHER DROPDOWNS (non-Products) — keep normal ════════════ */
.nav-item:not(.has-dropdown) > .dropdown,
.nav-item.has-dropdown:not(:nth-child(3)) > .dropdown {
    display: block !important;
    grid-template-columns: 1fr;
    width: 240px;
    max-height: none;
    overflow: visible;
    padding: 8px 0 !important;
}

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 900px) {
    .nav-item.has-dropdown > .dropdown {
        grid-template-columns: repeat(2, 1fr);
        width: 95vw;
        max-height: 60vh;
    }
}

@media (max-width: 600px) {
    .nav-item.has-dropdown > .dropdown {
        grid-template-columns: 1fr;
        width: 95vw;
        max-height: 50vh;
    }

        .nav-item.has-dropdown > .dropdown > li.has-dropdown > .dropdown {
            position: static;
            width: 100%;
            box-shadow: none;
            border: none;
            background: rgba(255,255,255,0.03);
            margin-left: 12px;
            display: none !important;
        }

        .nav-item.has-dropdown > .dropdown > li.has-dropdown.open > .dropdown {
            display: block !important;
        }
}
/* ── Hamburger ── */
.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    transition: background 0.2s;
}

    .hamburger:hover {
        background: rgba(255,255,255,0.05);
    }

@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 20px 0;
        overflow-y: auto;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.35s ease;
    }

        .nav-menu.active {
            transform: translateX(0);
        }

    .nav-item {
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .nav-link {
        padding: 14px 20px;
        justify-content: space-between;
        font-size: 0.9rem;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav-item.open > .dropdown {
        max-height: 2000px;
    }

    .dropdown li a {
        padding: 10px 20px 10px 30px;
        font-size: 0.85rem;
        border-radius: 6px;
    }

    .dropdown .category-label {
        padding: 15px 30px 6px;
        font-size: 0.7rem;
    }

    .dropdown .dropdown {
        position: static;
        transform: none;
        margin-left: 0;
        max-height: 0;
        overflow: hidden;
        background: rgba(255,255,255,0.03);
        border-radius: 0;
        border-left: 2px solid rgba(34,211,238,0.2);
    }

    .dropdown .has-dropdown.open > .dropdown {
        max-height: 2000px;
    }

    .dropdown .dropdown li a {
        padding-left: 45px;
    }

    .dropdown .dropdown .category-label {
        padding-left: 45px;
    }

    .dropdown .dropdown .dropdown li a {
        padding-left: 65px;
    }

    .dropdown li a i.fa-chevron-right {
        font-size: 0.7rem;
        color: #555;
        display: inline;
        margin-left: auto;
    }

    .dropdown .has-dropdown > a i.fa-chevron-right {
        transition: transform 0.25s;
    }

    .dropdown .has-dropdown.open > a i.fa-chevron-right {
        transform: rotate(90deg);
        color: #fff;
    }
}


/* =========================================
   HERO SLIDER
   ========================================= */
.hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

    .slide.active {
        opacity: 1;
    }

    .slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(15,23,42,0.9), rgba(15,23,42,0.4));
    }

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    max-width: 800px;
    width: 90%;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.5s;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.8s;
}

.hero-btns {
    opacity: 0;
    animation: fadeUp 1s forwards 1.1s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

    .dot.active {
        background: var(--accent-orange);
        transform: scale(1.2);
    }

/* =========================================
   ABOUT & CAPABILITIES
   ========================================= */
.section-title {
    text-align: center;
    margin-bottom: 60px; width:1200px;
}

    .section-title h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--accent-orange);
        }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.capability-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.capability-list i {
    color: var(--accent-blue);
    margin-right: 15px;
    font-size: 1.2rem;
}

.certified-badge {
    display: inline-block;
    background: var(--accent-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

/* =========================================
   SERVICES CARDS
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

    .service-card:hover {
        transform: translateY(-10px);
        background: rgba(255,255,255,0.1);
        border-color: var(--accent-blue);
    }

.service-icon {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 25px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* =========================================
   TIMELINE
   ========================================= */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background: var(--accent-blue);
    }

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
}

    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: right;
    }

    .timeline-item:nth-child(even) {
        left: 50%;
        text-align: left;
    }

    .timeline-item::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        background: var(--accent-orange);
        border-radius: 50%;
        top: 25px;
        z-index: 10;
    }

    .timeline-item:nth-child(odd)::after {
        right: -10px;
    }

    .timeline-item:nth-child(even)::after {
        left: -10px;
    }

.year-badge {
    display: inline-block;
    font-weight: 700;
    color: var(--accent-blue);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* =========================================
   PRODUCTS GRID
   ========================================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden; 
    
    transition: var(--transition);
}

    .product-card:hover {
        
    }

.product-img {
    height: 200px;
    background-color: #eee;
    overflow: hidden;
}

    .product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    text-align: center;
}

    .product-info h4 {
        color: var(--primary-dark);
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

/* =========================================
   FOOTER
   ========================================= */
footer {
    background-color: #0b1120;
    color: var(--text-light);
    padding-top: 60px;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

    .footer-col ul li a:hover {
        color: var(--accent-blue);
    }

/* The Split Copyright Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}

    .footer-logos img {
        height: 40px;
        background: white; /* Makes logos visible on dark bg */
        padding: 5px;
        border-radius: 4px;
    }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary-dark);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.4s;
    }

        .nav-menu.active {
            left: 0;
        }

    .dropdown {
        position: static;
        visibility: visible;
        opacity: 1;
        transform: none;
        display: none;
        background-color: rgba(255,255,255,0.05);
        min-width: 100%;
        text-align: center;
        box-shadow: none;
    }

    .nav-item:hover .dropdown {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        text-align: left;
    }

        .timeline-item:nth-child(odd) {
            text-align: left;
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: 0;
        }

        .timeline-item::after {
            left: 10px !important;
        }
}
/* =========================================
   ABOUT SECTION SPECIFIC STYLES
   ========================================= */

/* Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Columns */
    gap: 50px;
    align-items: start;
}

/* Text Justification */
.text-justify {
    text-align: justify;
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Sub-headings inside content */
.section-subtitle {
    color: var(--accent-blue);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Quote/Card Styling for Assets & Success Keys */
.quote-card {
    background: var(--white);
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 25px;
    border-left: 5px solid; /* Color set inline in HTML */
    transition: transform 0.3s ease;
}

    .quote-card:hover {
        transform: translateY(-5px);
    }

    .quote-card h3 {
        margin-bottom: 10px;
        color: var(--primary-dark);
        font-size: 1.2rem;
    }

/* Sub Image Grid (2 small images) */
.image-grid-sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.responsive-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Responsive Breakpoint */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
    }

    .image-grid-sub {
        grid-template-columns: 1fr; /* Stack images on mobile */
    }
}